home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
libs
/
vopl
/
glvopl.lha
/
glvopl
/
src
/
err.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-07
|
254 b
|
23 lines
#include "vopl.h"
#ifndef SGI_GL
#include "vogl.h"
#endif
/*
* vopl_error
*
* Prints an error message.
*/
void
vopl_error(str)
char *str;
{
#ifndef SGI_GL
if (vdevice.initialised)
gexit();
#endif
fprintf(stderr,"vopl: %s\n", str);
exit(1);
}